//Instructions
//Create a function that accepts an array and returns the last item in the array. 
//The array can contain any of JavaScript's five primitive data types.

using System;
using System.Linq;
public class Program 
{
    public static object GetLastItem(object[] arr) 
    {
      return arr.Last();
    }
}
